the break statement "jump out" of a loop . while in other hand the continue statement "jump over" one iteration in the loop

a loop with a break statement.

a loop with continue statement.

in thi loop we will skip the step where i = 3

javascript labels